home *** CD-ROM | disk | FTP | other *** search
- struct gets {
- /*
- * This is the GET_SESSION record. It's sent by PS to
- * RM to request the allocation of a session for the
- * conversation identified by RCB_ID.
- */
- struct tcb *p_tcb;
- struct rcb *p_rcb;
- char bid_id[8];
- };
-
- struct sessa {
- /*
- * This is the SESSION_ALLOCATED record. It's sent by RM
- * to PS in reply on the GET_SESSION record. The return code
- * indicates the success or failure of the session
- * allocation.
- */
- unsigned int rc;
- struct scb *p_scb;
- };
-